


/* General Reset */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Pixelify Sans', sans-serif;
  text-align: center;
  line-height: 1.6;
  user-select: none; /* Prevents text selection */
  -webkit-user-select: none; /* For Safari */
  -ms-user-select: none; /* For IE/Edge */
}



.avatar {

  clip-path: circle();
  size: 50%;
}

.background-container {
  background-image: url('Eva.gif'); /* Replace with your GIF file path */
  background-size: cover; /* Ensures the background covers the entire screen */
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh; /* Full-screen height */
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  text-shadow: 1px 1px 2px black;
}

/* Content inside the background */
.content {
  text-align: fixed;
  background: rgba(0, 0, 0, 0.5); /* Optional: Adds a slight background tint */
  padding: 20px;
  border-radius: 10px;
  filter: blur(0px);
}

/* Adding the blur */
.background-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit; /* Use the background */
  filter: blur(10px); /* Apply the blur effect */
  z-index: -1;
}

/* Navigation Bar */
nav {
  position:  top;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  z-index: 1000;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 0px;
  list-style: none;
}

nav ul li a {
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
  color: white;
}

nav ul li a:hover {
  color: #ff0000;
}

/* Header */


/* Main Sections */
main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 50vh;
  gap: 20px;
}

section {
  padding: 20px;
}

section h1 {
  font-size: 2em;
  margin-bottom: 10px;

}

section p {
  font-size: 1.2em;
}

@keyframes glow {
  0% {
    text-shadow: 0 0 5px #d7007f, 0 0 10px #d7007f, 0 0 20px #d7007f;
  }
  50% {
    text-shadow: 0 0 10px #d7007f, 0 0 20px #d7007f, 0 0 30px #d7007f;
  }
  100% {
    text-shadow: 0 0 5px #d7007f, 0 0 10px #d7007f, 0 0 20px #d7007f;
  }
}

.title {
  font-size: 3rem;
  color: #fff;
  text-align: center;
  animation: glow 2s infinite alternate;
}



/* Footer */
footer {
  position: bottom;
  bottom: -105px;
  padding: 10px;
  color: #aaa;
  font-size: 0.9em;
}

/* Navigation Styling */
nav {
  color: #111;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li {
  display: inline;
}

nav ul li a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #800080; /* Highlight color */
}

#typewriter-text
{

 font-size: 1.2em;
 color: #ffffff;
 white-space: nowrap;
 overflow: hidden;
 border-right: 2px solid #ff5733; /* Blinking cursor */
 width: 0; /* Hidden by default */
 animation: typing 4s steps(30, end), blink 0.7s step-end infinite;
}

/* Typing effect */
@keyframes typing {
 from {
   width: 0;
 }
 to {
   width: 100%; /* Reveal the full text */
 }
}
